home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / LINUX / ERRNO.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  305b  |  17 lines

  1. #ifndef _LINUX_ERRNO_H
  2. #define _LINUX_ERRNO_H
  3.  
  4. #include <asm/errno.h>
  5.  
  6. #ifdef __KERNEL__
  7.  
  8. /* Should never be seen by user programs */
  9. #define ERESTARTSYS    512
  10. #define ERESTARTNOINTR    513
  11. #define ERESTARTNOHAND    514    /* restart if no handler.. */
  12. #define ENOIOCTLCMD    515    /* No ioctl command */
  13.  
  14. #endif
  15.  
  16. #endif
  17.